Adopt OTel semantic conventions for agents and frameworks #2575
+85
−13
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adopts the current OpenTelemetry Semantic Conventions for genAI agents and frameworks as per https://opentelemetry.io/docs/specs/semconv/gen-ai/gen-ai-agent-spans/
Fixes #1826
Sets
span.set_attribute('gen_ai.system', 'gcp.vertex_ai')
according to the well-known system names.Adds missing attributes:
gen_ai.operation.name
gen_ai.response.model
gen_ai.request.temperature
Adds new utility functions to support proper OpenTelemetry conventions for naming and event emission:
_create_span_name(operation_name: str, model_name: str) -> str
Creates span names following the OTel convention:
{operation_name} {model_name}
add_genai_prompt_event(span: trace.Span, prompt_content: str)
Adds GenAI prompt events using the standard
gen_ai.content.prompt
event nameadd_genai_completion_event(span: trace.Span, completion_content: str)
Adds GenAI completion events using the standard
gen_ai.content.completion
event nameLocal demo script: